home *** CD-ROM | disk | FTP | other *** search
/ Champak 123 / (Vol 123) Jan 13 2011.iso / Games / crazy_fishing.swf / scripts / frame_5 / DoAction.as
Text File  |  2011-01-13  |  493b  |  22 lines

  1. stop();
  2. var Boolk_Sound = new Sound();
  3. Boolk_Sound.attachSound("BoolkSound");
  4. var Level_Sound = new Sound();
  5. Level_Sound.attachSound("LevelSound");
  6. var Over_Sound = new Sound();
  7. Over_Sound.attachSound("OverSound");
  8. _root.Boolk_Sound.setVolume(50);
  9. sound.onRelease = function()
  10. {
  11.    if(this._currentframe == 1)
  12.    {
  13.       this.gotoAndStop(2);
  14.       _root.Boolk_Sound.setVolume(0);
  15.    }
  16.    else
  17.    {
  18.       this.gotoAndStop(1);
  19.       _root.Boolk_Sound.setVolume(50);
  20.    }
  21. };
  22.